﻿@charset "utf-8";

/* 集约化02 */

/* 链接 */
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #2d8fff;
    text-decoration: none;
}

a:active {
    outline: none;
}

/* 头部、底部、公用 */

body {
    overflow-x: hidden;
    font-size: 16px;
    background: #f9f9f9 url(../images/bg.jpg) 50% 170px no-repeat;
}

.header {
    background: url(../images/head.jpg) 50% 40px no-repeat;
}

.ht {
    height: 40px;
    line-height: 40px;
    background-color: #eee;
}

.ht a {
    margin: 0 10px;
}

.header h1 {
    width: 500px;
    height: 130px;
    background: url(../images/logo.png) 0 50% no-repeat;
}

.header h1 a {
    display: block;
    height: 130px;
}

.nav {
    width: 700px;
    padding: 25px 0;
}

.nav li {
    float: left;
    position: relative;
    width: 16%;
}

.nav li a {
    display: block;
    height: 80px;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
}

.nav li a:hover {
    color: #2d8fff;
}

.nav li a i {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background-image: url(../images/icons_02.png);
    background-image: url(../images/icons_02_ie8.png)\9;
    background-size: 240px auto;
    transition: all .3s;
}

.nav .s1 {
    background-position: 0 0;
}

.nav .s2 {
    background-position: -40px 0;
}

.nav .s3 {
    background-position: -80px 0
}

.nav .s4 {
    background-position: -120px 0;
}

.nav .s5 {
    background-position: -160px 0;
}

.nav .s6 {
  background-position: 0px -120px;
}

.inner,
.content,
.links,
.copyright {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 移动端菜单开始 */

.mask {
    display: none;
    position: fixed;
    z-index: 597;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity .2s;
}

.mask.on {
    display: block;
    opacity: 1;
}

body.modal-open {
    position: fixed;
    width: 100%;
}

.menu {
    display: none\9;
    position: fixed;
    z-index: 598;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background-color: #f5f5f5;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.menu.on {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu img {
    display: block;
    width: 70%;
    margin: 60px 20px;
}

.menu li a {
    position: relative;
    display: block;
    margin: 0 15px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #048;
}

.menu li a:after {
    content: " ";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-width: 2px 2px 0 0;
    border-color: #ccc;
    border-style: solid;
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 10px;
}

.menu li+li a {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .2);
}

.menu>ul>li:nth-child(1) {
    animation-delay: .1s;
}

.menu>ul>li:nth-child(2) {
    animation-delay: .2s;
}

.menu>ul>li:nth-child(3) {
    animation-delay: .3s;
}

.menu>ul>li:nth-child(4) {
    animation-delay: .4s;
}

.menu>ul>li:nth-child(5) {
    animation-delay: .5s;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 599;
    width: 50px;
    height: 50px;
}

.menu-btn.on,
.menu-btn.fixed {
    position: fixed;
    top: 50px;
}

.menu-btn>span {
    position: absolute;
    left: 0;
    right: 0;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #048;
    border-radius: 2px;
    transition: .25s;
}

.menu-btn>span:nth-child(1) {
    top: 18px;
}

.menu-btn>span:nth-child(2) {
    top: 24px;
}

.menu-btn>span:nth-child(3) {
    top: 30px;
}

.menu-btn.on span,
.hd+.menu-btn>span {
    background: #048;
}

.menu-btn.on span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-btn.on span:nth-child(2) {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-btn.on span:nth-child(3) {
    top: 21px;
    transform: rotate(135deg);
}

/* 移动端菜单结束 */

/* 搜索 */

.header .search {
    width: 800px;
    margin: 20px auto;
}

.search input,
.search button {
    float: left;
    display: block;
}

.search input {
    box-sizing: border-box;
    width: 676px;
    height: 60px;
    line-height: 20px;
    font-size: 16px;
    margin-right: 4px;
    padding: 20px;
    border: none;
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    border-radius: 2px;
    outline: none;
}

.search button {
    box-sizing: border-box;
    width: 120px;
    height: 60px;
    border: none;
    background: #ff9d08;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 2px;
}

.search button .iconfont {
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .search button .iconfont {
        margin-right: 0px;
        display: block;
    }
}

.search p {
    clear: both;
    padding-top: 10px;
    line-height: 30px;
}

.search p a {
    margin: 0 10px;
}

/* 底部 */

.footer {
    border-top: 2px solid #37e;
    padding: 20px 0;
    background-color: #eee;
}

.links>ul>li {
    position: relative;
    margin-bottom: 20px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
}

.links>ul>li>a {
    display: block;
    margin: 0 -5px;
    padding: 0 20px;
    background: #fff url(../images/links_arr.png) 96% 50% no-repeat;
}

.links li ul {
    display: none\9;
    z-index: -1;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 40px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    opacity: 0;
    transform: translate(0, 3px);
    transition: opacity, transform .3s;
}

.links li:hover ul {
    display: block\9;
    z-index: 9;
    opacity: 1;
    transform: translate(0, 0);
}

.links li li {
    border-top: 1px solid #ddd;
    line-height: 39px;
    text-align: center;
    transition: all .3s;
}

.links li li:hover {
    background-color: #f8f8f8;
}

.links li li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 14px;
}

.copyright {
    line-height: 32px;
}

.copyright p a,
.copyright p span {
    margin: 0 10px;
}

.gov {
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 80px;
    margin-top: -40px;
}

.jc {
    position: absolute;
    top: 50%;
    right: 0;
    width: 110px;
    height: 55px;
    margin-top: -22px;
}

@media (max-width: 1200px) {
    body {
        background-position: 50% 140px;
    }

    .header {
        background-position: 50% 10px;
    }

    .header h1 {
        height: 100px;
        background-position: 16px 50%;
        background-size: auto 60%;
    }

    .header h1 a {
        display: block;
        height: 100px;
    }

    .ht .fl,
    .nav,
    .header .search p strong {
        display: none;
    }

    .ht .fr {
        text-align: center;
        font-size: 12px;
    }

    .ht .fr,
    .header h1,
    .inner,
    .content,
    .links,
    .copyright {
        width: 100%;
    }

    .menu-btn {
        display: block;
    }

    .header .search {
        width: auto;
        margin: 20px;
    }

    .header .search input {
        width: 100%;
        height: 50px;
        padding: 15px 65px 15px 15px;
        margin: 0;
    }

    .header .search button {
        width: 50px;
        height: 50px;
        margin-left: -50px;
        background-position: center;
        line-height: 0;
        font-size: 0;
        color: transparent;
    }

    .header .search p {
        font-size: 12px;
    }

    .footer {
        padding: 20px;
    }

    .links {
        padding: 0 20px;
    }

    .copyright {
        line-height: 22px;
        font-size: 14px;
    }

    .handle {
        margin-bottom: 10px;
    }

}

@media (max-width: 768px) {

    .copyright p span {
        display: block;
    }

    .footer .gov,
    .footer .jc {
        position: relative;
        display: inline-block;
        top: 0;
        margin-top: 20px;
        vertical-align: middle;
    }
}

/* 公用 */

.grid,
.main,
.side {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.content .row {
    margin-right: -10px;
    margin-left: -10px;
}

.content .row>.col,
.content .row>[class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.tab-pane {
    position: relative;
    overflow: hidden;
}

.tab-pane .pane>ul,
.tab-pane .pane>div {
    animation-duration: .3s;
}

.tab a {
    display: inline-block;
    min-width: 100px;
    height: 40px;
    padding: 0 15px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 3px;
    transition: all .3s;
}

.tab a.current {
    background-color: #2d8fff;
    color: #fff;
}

.tab a+a {
    margin-left: 4px;
}

@media (max-width: 1200px) {
    .tab {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-left: -2px;
        margin-right: -2px;
    }

    .tab a {
        width: 0%;
        min-width: inherit;
        position: relative;
        overflow: hidden;
        display: block;
        margin: 0 2px;
        padding: 0;
        font-size: 12px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }
}

.list-a li i {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/icons_02.png);
    background-image: url(../images/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.grid h2 {
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 24px;
    font-size: 24px;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.pt30 {
    padding-top: 30px;
}

.md-blue {
    background-color: #2d8fff;
}

.md-orange {
    background-color: #ff9d08;
}

.t3 b {
    font-weight: normal;
    font-size: 18px;
    color: #333;
    border-left: 8px solid #2d8fff;
}

.pages .current {
    background-color: #2d8fff;
}

.table-bordered {
    margin-bottom: 0px;
}

.table-bordered>tbody>tr>th {
    background-color: #f9f9f9;
    text-align: center;
    color: #048;
}

/* 首页 开始*/

/* part1开始 */

.news {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.news .tab a {
    height: 50px;
    line-height: 50px;
}

.focus,
.focus .pic {
    position: relative;
    width: 570px;
    height: 340px;
}

.focus .pic>div {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.focus .pic img {
    width: 100%;
    height: 100%;
}

.focus .pic span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 10px 80px 10px 10px;
    line-height: 26px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #333;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}

.focus .focus-prev,
.focus .focus-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .5);
    background-size: 24px auto;
    color: #fff;
    opacity: 0;
    transition: all .3s;
}

.focus .focus-prev .iconfont,
.focus .focus-next .iconfont {
    font-size: 28px;
    font-weight: normal;
}

.focus .focus-prev {
    transform: translate(-50px, 0);
    left: 0;
    background-image: none;
}

.focus .focus-next {
    transform: translate(50px, 0);
    right: 0;
    background-image: none;
}

.focus:hover .focus-prev,
.focus:hover .focus-next {
    opacity: 1;
    transform: translate(0, 0);
}

.focus .navi {
     position: absolute;
     bottom: 14px;
     left: auto;
     right: 0;  
     z-index: 9;
     width: auto;
     margin-bottom: 4px\9;
     padding: 0 10px;
     text-align: right;
 }
.focus .navi li {
    float: left;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    font: 0/0 lx;
    border: 1px solid #fff;
    color: transparent;
    border-radius: 100px;
    transition: all .3s;
}

.focus .navi li.on {
    background-color: #fff;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

.focus .swiper-pagination-bullet {
    border: 1px solid #fff;
    background: none;
    opacity: 1;
}

.focus .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media (max-width: 1200px) {

    .focus,
    .focus .pic {
        position: relative;
        width: 100%;
        height: auto;
    }

    .focus .pic>div {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 60% 0 0;
    }

    .focus .pic img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .focus {
        margin-bottom: 20px;
    }

}

.news .list-t li a {
    width: 70%;
}

@media (max-width: 1024px) {
    .news .list-t li a {
        width: 100%;
    }
}

/* part1结束 */

/* part2开始 */

.topic {
    position: relative;
}

.topic h2 {
    width: 60px;
    height: 130px;
    background: url(../images/topic.jpg) 0 0 no-repeat;
}

.topic .scroll {
    position: relative;
    margin: 0 60px 0 140px;
}

.topic li {
    width: 320px\9;
}

.topic li a {
    display: block;
    width: 300px\9;
    margin: 0 10px;
}

.topic li img {
    width: 100%;
}

.topic-prev,
.topic-next {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 40px;
    margin-top: -20px;
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #eee;
    cursor: pointer;
}

.topic-prev span,
.topic-next span {
    display: block;
    width: 20px;
    margin: 8px auto;
    font-size: 22px;
    text-align: center;
    color: #ccc;
    font-weight: bold;
}

.topic-prev {
    left: 100px;
    background-image: none;
}

.topic-next {
    right: 20px;
    background-image: none;
}

@media (max-width: 1200px) {
    .topic .scroll {
        margin: 0 -10px;
    }

    .topic h2,
    .topic-prev,
    .topic-next {
        display: none;
    }
}

/* part2结束 */

/* part3开始 */
.p3,
.p4,
.p5,
.contact {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

/* .p3 { */
    /* height: 780px; */
/* } */

/* .p3 .tab-pane { */
    /* height: 310px; */
/* } */

.query {
    position: relative;
    height: 40px;
}

.query label {
    float: left;
    position: relative;
    display: block;
    width: 80px;
    border-right: 1px solid #ddd;
    margin-top: 10px;
    margin-right: -80px;
    line-height: 20px;
    text-align: center;
}

.query input {
    float: left;
    display: block;
    width: 300px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 10px 10px 90px;
    line-height: 20px;
    font-size: 16px;
    border-radius: 3px;
}

.query button {
    float: left;
    display: block;
    width: 40px;
    height: 40px;
    border: none;
    margin-left: 4px;
    background: #ff9d08 url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cdefs%3E%3Cstyle/%3E%3C/defs%3E%3Cpath d='M146.286 475.429h14.628c0 168.228 138.972 307.2 307.2 307.2s307.2-138.972 307.2-307.2-138.971-307.2-307.2-307.2-307.2 138.971-307.2 307.2h-14.628zm804.571 402.285c21.943 21.943 21.943 58.515 0 80.457-21.943 21.943-58.514 21.943-80.457 0L724.114 811.886c-73.143 58.514-160.914 87.771-256 87.771-234.057 0-424.228-190.171-424.228-424.228S234.057 51.2 468.114 51.2s424.229 190.171 424.229 424.229c0 95.085-29.257 182.857-87.772 256l146.286 146.285z' fill='%23fff'/%3E%3C/svg%3E") 50% 50% no-repeat;
    background: #ff9d08 url(../images/q.png) center no-repeat\9;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}

@media (max-width: 1200px) {
    .query input {
        width: 100%;
    }

    .query button {
        position: relative;
        margin-left: -40px;
    }
}

.a1 {
    margin-left: -5px;
    margin-right: -5px;
}

.a1 li {
    width: 50%;
}

.a1 li a {
    position: relative;
    height: 70px;
    margin: 5px;
    padding: 0 10px;
    line-height: 70px;
    text-align: left;
    font-weight: bold;
    background-color: #6caaf0;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.a1 li a:hover {
    background-color: #2d8fff;
    color: #fff;
}

.a1 li i {
    float: right;
    margin: 15px -5px 0 0;
}

.a1 .s1 {
    background-position: 0 -40px;
}

.a1 .s2 {
    background-position: -40px -40px;
}

.a1 .s3 {
    background-position: -80px -40px;
}

.a1 .s4 {
    background-position: -120px -40px;
}

.a1 li i {
    animation-duration: .6s;
}

.a1 li a:hover i {
    transform: rotateY(360deg);
}

.a2 li {
    width: 25%;
}

.a2 li a {
    margin: 10px;
}

@media (max-width: 1200px) {
    .a1 li i {
    float: right;
    margin: 15px -5px 0 0;
}
    .a2 li a {
        margin: 10px 0;
        font-size: 14px;
    }
}
 @media (max-width: 320px) {
    .a1 li a {
        font-size: 14px;
        padding-left: 3px;
    }

.a1 li i {
    float: right;
    margin: 15px -10px 0 0;
}
}
.a2 li i {
    margin: 0 auto 10px;
}

.a2 li a:hover i {
    background-color: #ecf5ff;
    box-shadow: 0 0 0 10px #ecf5ff;
}

.a2 .s1 {
    background-position: 0 -80px;
}

.a2 .s2 {
    background-position: -40px -80px;
}

.a2 .s3 {
    background-position: -80px -80px;
}

.a2 .s4 {
    background-position: -120px -80px;
}

.a2 .s5 {
    background-position: 0 -120px;
}

.a2 .s6 {
    background-position: -40px -120px;
}

.a2 .s7 {
    background-position: -80px -120px;
}

.a2 .s8 {
    background-position: -120px -120px;
}



/* part3结束 */

/* part4开始 */
.p4 {
    /* height: 780px; */
    background: #fff url(../images/p5_bg.jpg) 100% 100% no-repeat;
    background-size: 100% auto;
}

.service {
    height: 120px;
    background: #6aa9f1 url(../images/zwfw.jpg) center no-repeat;
    background-size: cover;
}

.service a{
    width: 100%;
    height: 100%;
    display: block;
}

.service p {
    padding-top: 80px;
}

.service p a {
    display: inline-block;
    margin: 0 5px;
    padding: 0 25px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 100px;
    transition: all .3s;
}

.service p a:hover {
    background-color: #fff;
    color: #2d8fff;
}

@media (max-width: 1200px) {
    .service {
        background-position: 0 0;
    }

    .service p a {
        padding: 0 15px;
    }
}

.a3 li {
    width: 33.33%;
}

.a3 li a {
    margin: 20px 10px;
}

.a3 li i {
    position: relative;
    box-sizing: content-box;
    border: 8px solid #89bbf3;
    margin: 0 auto 10px;
    background-color: #89bbf3;
    border-radius: 100px;
}

.a3 .s1 {
    background-position: 0 -160px;
}

.a3 .s2 {
    background-position: -40px -160px;
}

.a3 .s3 {
    background-position: -80px -160px;
}

.a3 .s4 {
    background-position: -120px -160px;
}

.a3 .s5 {
    background-position: -160px -160px;
}

.a3 .s6 {
    background-position: -200px -160px;
}

.a3 li a:hover .s1,
.a3 li a:hover .s2,
.a3 li a:hover .s3,
.a3 li a:hover .s4,
.a3 li a:hover .s5,
.a3 li a:hover .s6 {
    border-color: #2792ff;
    background-color: #2792ff;
}

.a3 .s7 {
    border-color: #2792ff;
    background-color: #2792ff;
    background-position: -160px -40px;
}

.a3 .s8 {
    border-color: #ff9402;
    background-color: #ff9402;
    background-position: -160px -80px;
}

.a3 .s9 {
    border-color: #3ecdb5;
    background-color: #3ecdb5;
    background-position: -160px -120px;
}

/*.a3 li a:hover .s7 {
    border: 8px solid #89bbf3;
    background-color: #89bbf3;
}

.a3 li a:hover .s8 {
    border: 8px solid #ffc06b;
    background-color: #ffc06b;
}

.a3 li a:hover .s9 {
    border: 8px solid #7ddccc;
    background-color: #7ddccc;
}*/

.a3 li a:hover i {
    box-shadow: 0 0 0 6px #ecf5ff;
}

.a3 li i:before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    display: block;
    border: 1px solid rgba(0, 0, 0, .05);
    background-color: rgba(255, 255, 255, .1);
    transform: scale(0, 0);
    opacity: 0;
    border-radius: 100px;
    transition: all .3s;
}

.a3 li a:hover i:before {
    transform: scale(1, 1);
    opacity: 1;
}

.a4 {
    padding: 20px;
}

.a4 li {
    width: 50%;
}

.a4 li a {
    position: relative;
    padding-left: 40px;
    line-height: 50px;
    font-size: 18px;
    text-align: left;
}

.a4 li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background-color: #2d8fff;
    border-radius: 100px;
}

/* part4结束 */

/* part5开始 */
.p5 {
    /*height: 590px;*/
}

.p5 .a3 {
    margin-top: -20px;
}

.p5 .pic-text {
    position: relative;
}

.p5 .pic-text .pic {
    position: relative;
    height: 180px;
}

.p5 .pic-text p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #333;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}

.p5 .list-b li {
    padding-left: 80px;
}

.p5 .list-b li .tag {
    position: absolute;
    top: 15px;
    left: 0;
    display: inline-block;
    padding: 0 10px;
    line-height: 24px;
    border-radius: 3px;
}

.contact {
    height: 170px;
}

.contact p {
    line-height: 24px;
}

.contact i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icons_02.png);
    background-image: url(../images/icons_02_ie8.png);
    background-size: 240px auto;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.contact .s1 {
    background-position: -214px -8px;
}

.contact .s2 {
    background-position: -214px -48px;
}

.contact .s3 {
    background-position: -214px -88px;
}

.contact .s4 {
    background-position: -214px -128px;
}

/* part5结束 */




/*功能导航*/

#floatDivBoxs {
    width: 80px;
    position: fixed;
    top: 0px;
    right: 0;
    z-index: 999;
    background-color: #333;
    background: rgba(62, 62, 62, 0.6);
    /*filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#73e3e3e, endcolorstr=#73e3e3e);*/
    bottom: 0px;
}

#floatDivBoxs .floatDqq {
    padding: 180px 0px;
}

#floatDivBoxs .floatDqq li {
    width: 80px;
    height: 80px;
    padding: 10px 0px;
}

#floatDivBoxs .floatDqq li a {
    display: block;
    width: 80px;
    padding: 10px 5px;
    color: #fff;
    text-align: center;
    font: normal 14px/20px microsoft yahei, smihei;
}

#floatDivBoxs .floatDqq li a:hover {
    background-color: #2d8fff;
}

#floatDivBoxs .floatDqq li .iconfont {
    display: block;
    margin: 10px 15px;
    fill: #fff;
    font-size: 24px;
}

#rightArrow {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 400px;
    right: 120px;
    z-index: 999;
}

#rightArrow a {
    display: block;
    height: 80px;
    background: url(../images/s.png) no-repeat;
}

.floatDqq li span.wx {
    display: none;
    width: 90px;
    position: absolute;
    top: 250px;
    right: 124px;
    right: 124px\9\0;
    z-index: 9999999;
}

.floatDqq li:hover span.wx {
    display: block;
    display: block\9\0;
}

.floatDqq li span.wx img {
    width: 134px;
    height: 120px;
}

@media (max-width: 1024px) {

    #rightArrow,
    #floatDivBoxs {
        display: none;
    }
.service {
    height: 120px;
    background: #6aa9f1 url(../images/zwfw.jpg) center no-repeat;
    background-size:auto;
}
.p5 .pic-text .pic{
    height: 100%;
}
}

/* 首页 结束*/

/* 发布解读 开始 */
.proposal {
    padding: 7px 10px;
    line-height: 32px;
    height: 79px;
    overflow: hidden;
    background-color: #fafafa;
}

.proposal img {
    width: 65px;
    height: 65px;
    display: block;
    float: left;
}

.a5 {
    display: inline-block;
    width: 100%;
}

.a5 li {
    width: 100%;
}

.a5 li {
    position: relative;
    line-height: 124px;
    font-size: 30px;
    height: 124px;
    border-radius: 5px;
    font-family: 'Noto Serif', 'Noto Serif CJK SC', 'Noto Serif CJK', 'Source Han Serif SC', ‘Source Han Serif’, source-han-serif-sc, PingFang SC, Microsoft YaHei, serif;
    background-image: url(../images/sjfb.png);
    background-repeat: no-repeat;
}
.a5 li +li{
    margin-top: 15px;
}
.a5 li a {
    color: #fff;
    display: block;
}

.a5 li.s1 {
    background-position: center 0px;
}

.a5 li.s2 {
    background-position: center -124px;
}

.a5 li.s3 {
    background-position: center -248px;
}

.a5 li.s1 a,
.a5 li.s3 a {
    text-align: left;
    padding-left: 30px;
}

.a5 li.s2 a {
    text-align: right;
    padding-right: 30px;
}
.a6 li {
    line-height: 40px;
}

.a6 li i {
    width: 35px;
    height: 40px;
    display: block;
    float: left;
}

.a6 li span {
    padding: 0px 5px;
}

.a6 li i.s1 {
    background-position: 0px -200px;
}

.a6 li i.s2 {
    background-position: -40px -200px;
}

.a6 li i.s3 {
    background-position: -80px -200px;
}

.a6 li i.s4 {
    background-position: -120px -200px;
}

.mt_5 {
    margin-top: -5px;
}

.w48 {
    width: 48%;
}

.leader_info {
    width: 100%;
}

.leader_info img {
    width: 107px;
    height: 147px;
    border-radius: 3px;
}

.leader_info h4 {
    line-height: 44px;
    width: 65%;
    float: left;
    border-bottom: 1px solid #ccc;
}

.leader_info h4 b {
    font-size: 24px;
}

.leader_info h4 span {
    padding: 0px 10px;
}

.leader_wz {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    overflow: hidden;
    background-color: #fafafa;
}

.leader_wz p {
    line-height: 32px;
}

.leader_wz p b {
    font-weight: normal;
    padding-right: 15px;
}

.leader_wz p span {
    padding: 0px 20px 0px 0px;
}
.leader_pic {
   width: 107px;
   height: 147px;
   display: block;
}
@media (max-width: 1024px) {

    .leader_info h4 {
        width: 55%;
    }

    .leader_wz p span {
        padding: 0px 11px;
    }
}

@media (max-width: 768px) {
    .a5 li {
        width: 31.3%;
        float: left;
    }
    .a5 li+li {
        margin-left: 20px;
    }
    .leader_info h4 {
        width: 80%;
    }

    .leader .list-b li .pic {
        width: 130px;
        height: 200px;
    }
}
@media (max-width: 480px) {
    .a5 li {
        width: 100%;
    }

    .a5 li+li {
        margin-left: 0px;
    }
    .leader_info h4 {
        width: 100%;
    }

    .leader_wz {
        max-height: auto;
    }
   .leader_pic {
        display: block;
        margin:0px 35%;
    }

    .leader_wz p span {
        padding: 0px 6px;
    }
    .leader .list-b li .pic {
    width: 80px;
    height: 112px;
}
}
/* 发布解读 结束 */


/* 互动交流 开始 */
.lxgs .list-t li {
    line-height: 50px;
    padding-left: 30px;
}

.lxgs li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-color: transparent;
    border-radius: 0px;
    background: url(../images/dot.png) 0px 0px no-repeat;
}

.lxgs li:hover:before {
    background-color: transparent;
    background: url(../images/dot02.png) 0px 0px no-repeat;
}

.szxx li {
    width: 31%;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.szxx li+li {
    margin-left: 20px;
}

.szxx li a {
    margin: 0px 10px;
    font-size: 18px;
    line-height: 80px;
}

.szxx li i {
    float: left;
    margin-top: 12px;
    margin-left: 30px;
}

.collect .list-b li {
    border-top: 3px solid #f9f9f9;
    border-bottom: none;
}

.collect .list-b li h4 {
    font-size: 18px;
    line-height: 32px;
    font-weight: normal;
    margin-bottom: 0px;
}

.collect .list-b li i {
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    margin: 10px 10px 10px 0px;
    background-image: url(../images/icons_02.png);
    background-image: url(../images/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: -160px -200px;
}

.collect .list-b li h4,
.collect .list-b li p {
    padding-left: 10px;
    float: left;
    border-left: 1px solid #ccc;
}

.collect .list-b li p {
    line-height: 36px;
}

.collect .list-b li b {
    position: absolute;
    top: 30px;
    right: 20px;
    display: inline-block;
    line-height: 32px;
    padding: 0px 30px;
    text-align: center;
    border-radius: 50px;
    font-weight: normal;
    background-color: #f9f9f9;
}

.zxft {
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}

.zxft .pic {
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.zxft h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    padding: 0px 30px;
    margin-top: 20px;
}

.zxft p {
    position: relative;
    padding: 0px 30px;
    line-height: 40px;
}

.zxft p.info {
    color: #999;
    margin: 17px 0px;
}

.zxft p.info:before {
    content: '';
    position: absolute;
    top: 90px;
    left: 30px;
    width: 80px;
    height: 1px;
    background-color: #ccc;
}

.ftyg li {
    border-bottom: none;
    background-color: #f8fbff;
}

.ftyg li:hover {
    background-color: #f8f8f8;
}

.ftyg span {
    display: block;
    float: left;
    padding: 10px;
    text-align: center;
    font-size: 36px;
    color: #2d8fff;
    line-height: 20px;
    border-right: 1px solid #ccc;
}

.ftyg span b {
    font-size: 12px;
}

.ftyg .list-b li p {
    float: left;
    width: 78%;
    line-height: 34px;
    padding-left: 20px;
}

.wqhg li {
    line-height: 32px;
    padding-left: 0px;
}

.wqhg li span {
    color: #999;
}

.wqhg li:before {
    display: none;
}

@media (max-width: 1024px) {
    .szxx li a {
        line-height: 80px;
    }
    .collect .list-b li b {
        top: 45px;
        padding: 0px 20px;
    }
    .ftyg .list-b li p {
        width: 70%;
        font-size: 14px;
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
       .collect .list-b li b {
        top: 25px;
    }
}
@media (max-width: 480px) {
  .szxx li {
        width: 29%;
    }

    .szxx li a {
        line-height: 40px;
    }

    .szxx li i {
        margin-left: 14px;
        margin-right: 14px;
    }      
    .collect .list-b li h4 {
        max-height: 64px;
    }
}

@media (max-width: 320px) {
    .szxx li {
        width: 28%;
    }

    .szxx li i {
        margin: 0px;
    }

    .szxx li a {
        font-size: 14px;
    }
}
/* 互动交流 结束 */

/* 办事服务 开始 */
.zwfw {
    height: 187px;
    background: #6cabf2 url(../images/zwfw02.png) center no-repeat;
    background-size: cover;
}

.zwfw p {
    padding-top: 136px;
}

.zwfw p a {
    display: inline-block;
    margin: 0 10px;
    padding: 0 40px;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
    background-color: rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 3px;
    transition: all .3s;
}

.zwfw p a:hover {
    background-color: #fff;
    color: #2d8fff;
}

.download {
    display: block;
    padding: 0px 20px;
    line-height: 30px;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    right: 0px;
    background-color: #f5f5f7;
}

.download a {
    color: #1c77df;
}

.tabsList {
    zoom: 1;
    width: 100%;
    margin-left: -10px;
    display: inline-block;
}

.tabsList .a4 {
    padding: 20px 25px 20px 0px;
}

.tabsList li {
    display: inline;
    overflow: hidden;
    zoom: 1;
}

.tabsList li a {
    color: #fff;
    padding-left: 40px;
    line-height: 34px;
    font-size: 16px;
    border-left: 1px solid #6cb1ff;
}

.tabsList li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #fff;
}

.tabsList li h4 {
    height: 176px;
    cursor: pointer;
    float: left;
    overflow: hidden;
    font-size: 20px;
    padding: 0px 29px;
    margin-left: 10px;
    line-height: 60px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.lia i {
    display: block;
    width: 40px;
    height: 40px;
    margin: 40px auto 5px;
    background-image: url(../images/icons_02.png);
    background-image: url(../images/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.lia i.s1 {
    background-position: 0px -240px;
}

.lia i.s2 {
    background-position: -40px -240px;
}

.lia i.s3 {
    background-position: -80px -240px;
}

.lia i.s4 {
    background-position: -120px -240px;
}

.lia i.s5 {
    background-position: -160px -240px;
}

.tabsList li.on h4 {
    color: #fff;
    background-color: #2d8fff;
}

.tabsList li.on .lia i.s1 {
    background-position: 0px -280px;
}

.tabsList li.on .lia i.s2 {
    background-position: -40px -280px;
}

.tabsList li.on .lia i.s3 {
    background-position: -80px -280px;
}

.tabsList li.on .lia i.s4 {
    background-position: -120px -280px;
}

.tabsList li.on .lia i.s5 {
    background-position: -160px -280px;
}

.tabsList li.on .tabBody {
    display: block;
    float: left;
    margin-left: -13px;
    border-radius: 3px;
    background-color: #2d8fff;
}

.tabsList li .tabBody {
    display: none;
}

.results .hd {
    position: relative;
}

.results .hd ul {
    position: absolute;
    top: 6px;
    right: 0px;
    zoom: 1;
}

.results .hd ul li {
    float: left;
    cursor: pointer;
    display: block;
    line-height: 28px;
    margin: 0px 5px;
    border-radius: 3px;
    background-color: #e2e2e2;
}

.results .hd ul li a {
    display: block;
    padding: 0px 10px;
    border-radius: 3px;
}

.results .hd ul li.on,
.results .hd ul li.current a {
    color: #fff;
    display: block;
    background-color: #fd9e06;
}

.results .bd ul {
    zoom: 1;
    width: 100%;
}

.results .bd ul li {
    background-color: #fafafa;
    border-bottom: none;
    position: relative;
    padding: 20px;
    width: 100%;
    margin: 5px 0px;
    display: inline-table;
}

.results .bd ul li h4 {
    margin-bottom: 0px;
}

.results .bd ul li span {
    padding: 0px 10px;
    line-height: 26px;
    margin-right: 20px;
    color: #fff;
    font-weight: normal;
    background-color: #94c0ef;
}

.results .bd ul li b {
    position: absolute;
    top: 27px;
    right: 20px;
    padding: 0px 10px;
    font-weight: normal;
    border-radius: 3px;
    color: #fff;
    line-height: 40px;
    background-color: #fd9e06;
}
@media (max-width: 1024px) {
    .download {
        font-size: 14px;
        padding: 0px 5px;
    }
    .tabsList li h4 {
        padding: 0px 18px;
    }
    .results .bd ul li b {
        position: sticky;
        padding: 5px 10px;
        font-weight: normal;
        border-radius: 3px;
        color: #fff;
        line-height: 40px;
        font-size: 14px;
        background-color: #fd9e06;
    }
    .results .hd ul {
        display: none;
    }    
}

@media (max-width: 992px) {
    .download {
        display: none;
    }
    .w48 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .zwfw {
        background: #6aa9f1 url(../images/zwfw02.png) center -30px no-repeat;
        background-size: auto 176%;
    }
    .zwfw p {
        padding-top: 140px;
    }
    .tabsList li h4 {
        padding: 0px 26px;
    }
}
@media (max-width: 480px) {
    .zwfw {
        background: #6aa9f1 url(../images/zwfw02.png) center no-repeat;
        background-size: auto 106%;
    }
    .tabsList {
        margin-left: -5px;
    }
    .tabsList li h4 {
        padding: 0px;
        font-size: 14px;
        height: auto;
        width: 16.4%;
        text-align: center;
    }

    .tabsList .a4 {
        padding: 20px 20px 20px 0px;
    }

    .tabsList li a {
        padding-left: 20px;
        font-size: 14px;
    }

    .tabsList li a:before {
        left: 8px;
    }

    .tabsList li.on .tabBody {
        display: none;
    }

    .lia i {
        margin: 30px auto 5px;
    }
}

/* 办事服务 结束 */

/* 部门动态 开始 */
.topic .hd h3 {
    position: relative;
}

.topic .hd ul {
    position: absolute;
    top: 15px;
    right: 10px;
    zoom: 1;
}

.topic .hd ul li {
    float: left;
    cursor: pointer;
    display: block;
    margin: 0px 5px;
    width: 10px;
    height: 10px;
    font: 0/0 Arial;
    border-radius: 100px;
    background-color: #e2e2e2;
}

.topic .hd ul li.on {
    color: #fff;
    background-color: #fd9e06;
}

.topic .bd {
    overflow: hidden;
}

.topic .bd ul {
    zoom: 1;
    width: 100%;
}

.topic .bd ul li {
    border-bottom: none;
    width: 100%;
    padding:0px;
    margin-top: 20px;
    display: block;
    }
    .topic .bd ul li a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin:0px;
    }

.topic .bd ul li img {
    display: block;
    width: 100%;
    min-height: 100%;
    transition: all 0.3s;
}

.topic .bd ul li:hover img {
    transform: scale(1.1);
}

.ywpt {
    padding-bottom: 10px;
}

.ywpt .a2 li {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.ywpt .a2 li p{
    margin:0px 10px;
    text-align: center;
}
.ywpt .a2 li {
    padding: 30px 0px;
    margin: 5px;
    height: 178px;
    overflow: hidden;
}

.ywpt .a2 li:hover {
    color: #fff;
    background: #0088ff url(../images/ywpt.jpg) 50% 100% no-repeat;
    background-size: 110% auto;
}

.ywpt .a2 li:hover p {
    display: none;
}

.ywpt .a2 li a {
    display: none;
}

.ywpt .a2 li:hover a {
    display: block;
    margin-top: 0px;
    padding: 19px 0px;
    color: #fff;
}

.jkhb .category {
    display: inline-block;
    float: left;
    margin: 7px 20px 7px 0px;
    padding: 0px 10px;
    line-height: 26px;
    color: #fff;
    background-color: #94c0ef;
}

.jkhb .list-t li {
    padding-left: 0px;
}

.jkhb .list-t li:before {
    display: none;
}
@media (min-width: 1200px){
.ywpt .a2 li {
    width: 15.3%;
}
}
@media (max-width: 1024px) {
    .topic .hd ul {
        display: none;
    } 
    .ywpt .a2 li {
        width: 15%;
        padding: 30px 6px;
    }

    .ywpt .a2 li:hover p {
        display: block;
        margin-top: 0px;
        padding: 10px 0px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .ywpt .a2 li:hover p {
        font-size: 14px;
    }

    .ywpt .a2 li {
        width: 29.7%;
    }
}

/* 部门动态 结束 */

/* 信息公开列表页 开始 */
.side_info {
    padding-bottom: 100px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.side_info .a1 {
    margin-top: -40px;
}

.side_info .a1 li {
    width: 28%;
    margin-left: 10px;
}

.side_info .a1 li a {
    padding: 10px;
    text-align: center;
    line-height: 26px;
    margin: 0px;
}

.a1 li a:hover,
.a1 li a.current {
    background-color: #2d8fff;
    color: #fff;
}

ul.info-tree {
    padding: 15px 0;
}

ul.info-tree>li ul {
    display: none;
    margin: 10px 0 0 10px;
}

ul.info-tree>li {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    font-size: 18px;
    line-height: 40px;
    *background: url(../images/arr_r.png) 98% 11px no-repeat;
}

ul.info-tree li a {
    display: block;
}

ul.info-tree li.level-1 a,
ul.info-tree li.level-2 a {
    display: inline-block;
}

ul.info-tree li li a:hover {
    text-decoration: underline;
}

ul.info-tree li li {
    position: relative;
    padding: 5px 0;
    font-size: 16px;
    line-height: 25px;
}

ul.info-tree>li>i {
    position: absolute;
    top: 7px;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

ul.info-tree>li>i:after {
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: 20px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #bbb;
    border-bottom: 2px solid #bbb;
    transform: rotateZ(-45deg);
    transition: transform .3s;
}

ul.info-tree>li:hover>i:after,
ul.info-tree>li.level-1>i:after,
ul.info-tree>li.current>i:after {
    border-right: 2px solid #2d8fff;
    border-bottom: 2px solid #2d8fff;
}

ul.info-tree>li.level-1>i:after {
    transform: rotateZ(45deg);
}

ul.info-tree>li.current>i:after {
    transform: rotateZ(-135deg);
}

ul.info-tree>li.level-1 {
    *background: url(../images/arr_d.png) 98% 11px no-repeat;
}

ul.info-tree>li.current {
    *background: url(../images/arr_u.png) 98% 11px no-repeat;
}

ul.info-tree .current>ul {
    display: block;
}

ul.info-tree li.level-2>i {
    position: absolute;
    top: 5px;
    right: -7px;
    display: block;
    width: 20px;
    height: 20px;
    font-size: 24px;
    line-height: 20px;
    text-align: center;
    color: #aaa;
    cursor: pointer;
}

ul.info-tree li.level-2>i:after {
    content: '+';
    font-style: normal;
}

ul.info-tree li.level-2.current>i:after {
    content: '-';
    font-style: normal;
}

ul.info-tree li a:focus {
    color: #2d8fff;
    font-weight: bold;
}

ul.info-tree li li {
    padding-left: 20px;
}

ul.info-tree li li a:after {
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: 15px;
    left: 5px;
    width: 5px;
    height: 5px;
    background: #acacac;
    border-radius: 5px;
}

ul.info-tree li li a:hover:after {
    background: #2d8fff;
}

ul.info-tree li.level-2 ul li {
    font-size: 14px;
}

.info-query {
    padding: 15px;
    border-radius: 3px;
    border-top: 4px solid #2d8fff;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.info-query .form-control {
    padding: 6px 8px;
}

.info-list {
    padding: 0 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .06);
}

.info-list li {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
    transition: box-shadow .3s;
}

@media(min-width: 768px) {
    .info-list li>div {
        text-align: center;
    }
}

.info-list li:hover {
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 10px;
    padding-right: 10px;
    background: #fff url(../images/info_list_c.png) 8px 50%/12px auto no-repeat;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
}

.info-list li:first-child {
    line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #c3d6ee;
    background-color: #f8fbff;
}

.info-list li:first-child:hover {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #f8fbff;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
}

.info-list li p {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-extra {
    display: none;
    position: absolute;
    left: 60px;
    bottom: 32px;
    width: 90%;
    border: 1px solid #ddd;
    padding: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    border-radius: 5px;
    animation-duration: .5s;
}

.info-extra:before,
.info-extra:after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 20px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 7px solid #ddd;
}

.info-extra:after {
    bottom: -13px;
    border-top: 7px solid #fff;
}

.info-list li:hover .info-extra {
    display: block;
}

.info-extra .row {
    padding: 5px;
    line-height: 22px;
    font-size: 14px;
}

.info-extra .row+.row {
    border-top: 1px solid #ddd;
}

.info-extra .info-th {
    background-color: #f2f2f2;
    color: #999;
    text-align: center;
}

.info-date .input-group {
    width: 105px;
}

.info-list .row {
    margin-right: -15px;
    margin-left: -15px;
}

.side_info h2 {
    color: #fff;
    line-height: 80px;
    font-size: 30px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: normal;
    background-color: #2d8fff;
}

@media (max-width: 768px) {
    .info-extra {
        left: 10px;
    }

    .side_info h2 {
        line-height: 56px;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .info-list li {
        font-size: 14px;
    }

    .info-list li:hover {
        background: #fff url(images/info_list_c.png) 6px 50%/6px auto no-repeat;
    }

    .info-extra {
        padding: 5px 15px;
    }

    .info-extra .info-th {
        text-align: left;
    }

    .info-extra .row {
        padding: 5px;
        line-height: 24px;
    }

    .info-extra .row+.row {
        border: none;
    }

    .info-date .input-group {
        width: 100%;
    }

    .side_info {
        padding-bottom: 0px;
        margin-bottom: 20px;
    }

    ul.info-tree {
        padding: 0px;
    }

    ul.info-tree>li {
        padding: 5px 10px;
    }

    ul.info-tree>li>i {
        top: 0px;
    }
}

/* 信息公开列表页 结束 */

/* 领导信息 开始 */

.leader .list-b li .pic {
     float: left;
     position: relative;
     overflow: hidden;
     display: block;
     width: 150px;
     height: 190px;
     margin: 0;
     background-color: #eee;
 }

 .leader .list-b .pic img {
     /*width: 100%;
     height: 100%;*/
 }

 .leader .list-b li h4,
 .leader .list-b li .leader-info {
     margin-left: 170px;
 }

 .leader .list-b li h4 {
     font-size: 20px;
 }

 .leader-info {
     min-height: 144px;
     padding: 20px;
     line-height: 24px;
     background-color: #f0f3f8;
     background-image: linear-gradient(to top, #f0f3f8, #f1fafe);
     border-radius: 4px;
 }

 .leader-info h5 {
     border-left: 4px solid #06b;
     margin-left: -20px;
     margin-bottom: 10px;
     padding-left: 16px;
     font-size: 16px;
 }

 .leader-info p {
     width: 100%;
     overflow: hidden;
     text-overflow: ellipsis;
     max-height: 80px;
     padding: 5px 0;
 }

 .leader-info p .btn {
     margin-top: 10px;
 }

 .leader-info p+h5 {
     margin-top: 20px;
 }

 @media (max-width:480px) {
     .leader .list-b li .pic {
         width: 80px;
         height: 112px;
     }

     .leader .list-b li h4,
     .leader .list-b li .leader-info {
         margin-left: 100px;
     }
	  .leader-info p .btn {
        display: block;
     }

 }
@media (max-width:320px) {
		.leader-info {
    padding: 15px;

}
    .leader-info p .btn {
        margin-top: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-all;
        display: block;
        font-size: 14px;
    }
}


/* 领导信息 结束 */

/* 功能页面 开始 */

@media (max-width: 1200px) {
    .side-menu h2 {
        display: none;
    }

    .side-menu ul {
        margin: 0 -5px;
    }

    .side-menu li {
        float: left;
        width: 33.33%;
    }

    .side-menu li a {
        margin: 5px;
        padding: 0 15px;
        line-height: 40px;
        font-size: 16px;
        background-color: #eee;
        border-radius: 3px;
    }

    .side-menu li.current a {
        background-color: #2d8fff;
        color: #fff;
    }
}

@media (max-width: 678px) {
    .side {
        box-shadow: none;
    }

    .side-menu li {
        width: 50%;
    }

    .side-menu li a {
        font-size: 14px;
    }
}

.join,
.view {
    /*display: inline-block;*/
    padding: 0 15px;
    border-radius: 100px;
    line-height: 30px;
}

.interview {
    line-height: 28px;
    font-size: 16px;
}

.interview-video {
    background-image: linear-gradient(to bottom, #e9e9e9, #fff);
}

.interview-video video {
    width: 100%;
}

.interview-pic .prev,
.interview-pic .next {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000, endcolorstr=#7F000000);
    color: #fff;
    animation-duration: .3s;
}

.interview-pic:hover .prev,
.interview-pic:hover .next {
    display: block;
}

.interview-pic .prev:hover,
.interview-pic .next:hover {
    background: #37e;
    filter: none;
    color: #fff;
}

.interview-pic .prev {
    left: 0;
}

.interview-pic .next {
    right: 0;
}

.interview-info img {
    width: 60%;
    margin: 10px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.interview-info h3 {
    line-height: 40px;
    font-size: 18px;
    color: #2d8fff;
}

.interview-info h3 b {
    font-weight: normal;
}

.interview-info h3 i {
    margin-right: 10px;
    color: #ccc;
    vertical-align: -1px;
}

.interview-info p {
    font-size: 16px;
    line-height: 32px;
}

.interview-text {
    max-height: 800px;
    overflow: hidden;
}

.interview-text:hover {
    overflow-x: hidden;
    overflow-y: auto;
}

.interview-text p {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.interview-text p.q {
    cursor: pointer;
}

.interview-text p.q,
.interview-text p.a {
    padding: 15px 15px 15px 55px;
}

.interview-text p.q:before,
.interview-text p.a:before {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 18px;
}

.interview-text p.q:before {
    content: 'Q';
    color: #048;
}

.interview-text p.a:before {
    content: 'A';
    color: #ccc;
}

.interview-text p.current {
    background-color: #f8f8f8;
}

.lnterview .list-b li .pic {
    float: left;
    position: relative;
    width: 260px;
    height: 150px;
    margin-right: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.lnterview .list li:hover .pic img {
    transform: scale(1.1);
}

.lnterview .list .pic img {
    display: block;
    width: 100%;
    min-height: 100%;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .interview-text {
        max-height: none;
        overflow: visible;
    }
    .interview-text p.q,
    .interview-text p.a {
        padding: 10px 10px 10px 40px;
    }
    .interview-text p.q:before,
    .interview-text p.a:before {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 18px;
    }
    .yzm label {
        display: block;
    }
    .yzm .form-control {
        display: inline-block;
    }

    .yzm p {
        display: none;
    }
    .interview {
        line-height: 22px;
        font-size: 14px;
    }
}
/* 功能页面 结束 */

/* 网站地图  开始*/
.site-map h2 {
     position: -webkit-sticky;
     position: sticky;
     top: 0;
     z-index: 1;
     background-color: #fff;
 }

 .site-map .row {
     margin-right: -5px;
     margin-left: -5px;
 }

 .site-map .row>.col,
 .site-map .row>[class*="col-"] {
     padding-right: 0;
     padding-left: 0;
 }

 .site-map ul {
     margin-bottom: 20px;
     padding: 15px 0;
 }

 .site-map li {
     position: relative;
     border: 5px solid #fff;
     background-color: #f8f8f8;
     transition: all .3s;
 }

 .site-map li:before {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     width: 0;
     background-color: #e8f1fe;
     transition: .3s;
 }

 .site-map li:hover:before {
     width: 100%;
 }

 .site-map li>a {
     position: relative;
     display: block;
     padding: 0 40px 0 20px;
     border-left: 3px solid #bde;
     line-height: 60px;
     color: #048;
     overflow: hidden;
     white-space: nowrap;
     word-break: keep-all;
     text-overflow: ellipsis;
     transition: .3s;
 }

 .site-map li>a:hover {
     border-left: 3px solid #06b;
     font-weight: bold;
 }

 .site-map li>a:after {
     content: '';
     position: absolute;
     right: 15px;
     top: 50%;
     display: block;
     width: 0;
     height: 0;
     border: 6px solid transparent;
     border-left: 6px solid #ace;
     margin-top: -6px;
     transition: right .3s;
 }

 .site-map li>a:hover:after {
     right: 12px;
     border-left: 6px solid #048;
 }
/* 网站地图  结束*/


/* 依申请公开 开始  */

.forms input[type="radio"] {
    -webkit-appearance: radio;
}

.forms input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

.forms .form-control {
    padding: 6px;
}

.forms input.form-control {
    height: 38px;
}

.forms .pane {
    animation-duration: .3s;
}

.forms .row>div[class*="col-"] {
    margin-bottom: 1rem;
}

.forms .form-control:focus {
    border-color: #37e;
    box-shadow: 0 0 0.1rem 0.1rem rgba(0, 123, 255, .1);
}

.forms .form-inline .radio input {
    vertical-align: -2px;
    margin-right: 4px;
}

.forms .control-label {
    /* font-weight: bold;*/
}

.text-intro p {
    margin: 12px 0;
    line-height: 24px;
    font-size: 16px;
    text-indent: 2em;
}

.text-intro p a {
    margin: 0 5px;
    color: #06b;
    text-decoration: underline;
}

.info-btns [class*="btn"] {
    margin: 10px;
    transition: .3s;
}

.info-btns .btn-lg {
    font-size: 18px;
}

.info-btns [class*="btn"]:hover {
    box-shadow: 0 10px 20px rgba(0, 27, 128, .1);
    transform: translate(0, -3px);
}

.info-detail {
    max-width: 800px;
    border: 1px solid #ddd;
    margin: 20px auto;
    padding: 0 15px;
    font-size: 15px;
}

.info-detail .row {
    margin-left: -15px;
    margin-right: -15px;
}

.info-detail .row:nth-of-type(odd) {
    background-color: #fafafa;
}

.info-detail .row>div {
    border-top: 1px solid #ddd;
    margin-top: -1px;
    padding: 15px;
}

/* 依申请公开 结束  */
